const go/token.FLOAT

11 uses

	go/token (current package)
		token.go#L31: 	FLOAT  // 123.45
		token.go#L143: 	FLOAT:  "FLOAT",

	go/constant
		value.go#L429: 	case token.FLOAT:

	go/parser
		parser.go#L1363: 	case token.INT, token.FLOAT, token.IMAG, token.CHAR, token.STRING:
		parser.go#L2438: 		token.IDENT, token.INT, token.FLOAT, token.IMAG, token.CHAR, token.STRING, token.FUNC, token.LPAREN, // operands

	go/printer
		nodes.go#L1047: 	if lit.Kind != token.INT && lit.Kind != token.FLOAT && lit.Kind != token.IMAG {

	go/scanner
		scanner.go#L485: 		tok = token.FLOAT
		scanner.go#L506: 		tok = token.FLOAT
		scanner.go#L515: 	} else if prefix == 'x' && tok == token.FLOAT {

	go/types
		expr.go#L1267: 		case token.INT, token.FLOAT, token.IMAG:
		operand.go#L200: 	case token.FLOAT: